home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / dom / nsIDOMDocumentEvent.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  3KB  |  99 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIDOMDocumentEvent.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIDOMDocumentEvent_h__
  6. #define __gen_nsIDOMDocumentEvent_h__
  7.  
  8.  
  9. #ifndef __gen_domstubs_h__
  10. #include "domstubs.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17.  
  18. /* starting interface:    nsIDOMDocumentEvent */
  19. #define NS_IDOMDOCUMENTEVENT_IID_STR "46b91d66-28e2-11d4-ab1e-0010830123b4"
  20.  
  21. #define NS_IDOMDOCUMENTEVENT_IID \
  22.   {0x46b91d66, 0x28e2, 0x11d4, \
  23.     { 0xab, 0x1e, 0x00, 0x10, 0x83, 0x01, 0x23, 0xb4 }}
  24.  
  25. /**
  26.  * The nsIDOMDocumentEvent interface is the interface to the event
  27.  * factory method on a DOM document object.
  28.  *
  29.  * For more information on this interface please see 
  30.  * http://www.w3.org/TR/DOM-Level-2-Events/
  31.  *
  32.  * @status FROZEN
  33.  */
  34. class NS_NO_VTABLE nsIDOMDocumentEvent : public nsISupports {
  35.  public: 
  36.  
  37.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMDOCUMENTEVENT_IID)
  38.  
  39.   /* nsIDOMEvent createEvent (in DOMString eventType)  raises (DOMException); */
  40.   NS_IMETHOD CreateEvent(const nsAString & eventType, nsIDOMEvent **_retval) = 0;
  41.  
  42. };
  43.  
  44. /* Use this macro when declaring classes that implement this interface. */
  45. #define NS_DECL_NSIDOMDOCUMENTEVENT \
  46.   NS_IMETHOD CreateEvent(const nsAString & eventType, nsIDOMEvent **_retval); 
  47.  
  48. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  49. #define NS_FORWARD_NSIDOMDOCUMENTEVENT(_to) \
  50.   NS_IMETHOD CreateEvent(const nsAString & eventType, nsIDOMEvent **_retval) { return _to CreateEvent(eventType, _retval); } 
  51.  
  52. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  53. #define NS_FORWARD_SAFE_NSIDOMDOCUMENTEVENT(_to) \
  54.   NS_IMETHOD CreateEvent(const nsAString & eventType, nsIDOMEvent **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateEvent(eventType, _retval); } 
  55.  
  56. #if 0
  57. /* Use the code below as a template for the implementation class for this interface. */
  58.  
  59. /* Header file */
  60. class nsDOMDocumentEvent : public nsIDOMDocumentEvent
  61. {
  62. public:
  63.   NS_DECL_ISUPPORTS
  64.   NS_DECL_NSIDOMDOCUMENTEVENT
  65.  
  66.   nsDOMDocumentEvent();
  67.  
  68. private:
  69.   ~nsDOMDocumentEvent();
  70.  
  71. protected:
  72.   /* additional members */
  73. };
  74.  
  75. /* Implementation file */
  76. NS_IMPL_ISUPPORTS1(nsDOMDocumentEvent, nsIDOMDocumentEvent)
  77.  
  78. nsDOMDocumentEvent::nsDOMDocumentEvent()
  79. {
  80.   /* member initializers and constructor code */
  81. }
  82.  
  83. nsDOMDocumentEvent::~nsDOMDocumentEvent()
  84. {
  85.   /* destructor code */
  86. }
  87.  
  88. /* nsIDOMEvent createEvent (in DOMString eventType)  raises (DOMException); */
  89. NS_IMETHODIMP nsDOMDocumentEvent::CreateEvent(const nsAString & eventType, nsIDOMEvent **_retval)
  90. {
  91.     return NS_ERROR_NOT_IMPLEMENTED;
  92. }
  93.  
  94. /* End of implementation class template. */
  95. #endif
  96.  
  97.  
  98. #endif /* __gen_nsIDOMDocumentEvent_h__ */
  99.